.Blog {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  position: relative;
  
}
.Blog span {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  font-size: 2.5rem;
  color: #FFF;
  filter: drop-shadow(1px 1px 0 black) 
    drop-shadow(-1px 1px 0 black)
    drop-shadow(1px -1px 0 black)
    drop-shadow(-1px -1px 0 black);
}
.Blog:hover span, .Blog:focus span {
  opacity: 1;
 
}
.Blog img, .Blog:focus img {
  width: 327px;
  height: 407px;
  color: transparent;
 opacity: 1;
 
 
}